Ver a proveniência

前端修改

master
庞东旭 há 4 anos
ascendente
cometimento
6fa31af736
3 ficheiros alterados com 23 adições e 4 eliminações
  1. +5
    -1
      static/css/login/register.css
  2. +4
    -3
      static/js/common/tools.js
  3. +14
    -0
      view/login/registerFrom.html

+ 5
- 1
static/css/login/register.css Ver ficheiro

@@ -79,7 +79,11 @@
text-align: right;
width: 12%;
}

.userTable select{
height: 36px;
border: 1px solid #e3e3e3;
width: 100%;
}
.userTable tr td input[type="text"],.userTable tr td input[type="button"],.userTable tr td input[type="password"]{
height: 36px;
border: 1px solid #e3e3e3;


+ 4
- 3
static/js/common/tools.js Ver ficheiro

@@ -16,8 +16,8 @@ define(['jquery', 'dialog'], function ($, dialog) {
*/
doPost: function (url, data, cb, Bearer) {
var _this = this;
data.deptId = 100 ;
console.log(JSON.stringify(data))
// data.deptId = 100 ;
// console.log(JSON.stringify(data))
var headAttribute = '';
if (Bearer && Bearer == true || _this.getCookie('Admin-Token') == '') {
headAttribute = function (xhr) {
@@ -108,7 +108,8 @@ define(['jquery', 'dialog'], function ($, dialog) {
*/
doGet: function (uri, data, cb, Bearer) {
var _this = this;
var url = ajaxJsUrl + uri + '?deptId=100&';
// deptId=100&
var url = ajaxJsUrl + uri + '?';
console.log(url);
var headAttribute = ''
if (Bearer && Bearer == true || _this.getCookie('Admin-Token') == '') {


+ 14
- 0
view/login/registerFrom.html Ver ficheiro

@@ -198,6 +198,20 @@
</tr>
</table>
<table id="companyTable" class="userTable" style="display: none;">
<tr>
<td>
<span>*</span>经济类型:
</td>
<td>
<select id="economicType">
<option value="1">供应</option>
<option value="2">求购</option>
</select>
</td>
<td>
必须选择经济类型
</td>
</tr>
<tr>
<td>
<span>*</span>公司名称:


Carregando…
Cancelar
Guardar