apply-clients 5.0.35-75 → 5.0.35-76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "5.0.35-75",
3
+ "version": "5.0.35-76",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -1928,6 +1928,10 @@
1928
1928
  }
1929
1929
  console.log('本次点击button执行的操作是=>' + operate)
1930
1930
  model = Object.assign({}, this.selectdata, model)
1931
+ model.f_sub_state = '未完工'
1932
+ if (this.data.defname === '通气转单' && model.button.button_name === '提交'){
1933
+ model.f_sub_state = '完工'
1934
+ }
1931
1935
  let http = new HttpResetClass()
1932
1936
  var url
1933
1937
  var requestData = {
@@ -1963,14 +1967,11 @@
1963
1967
  this.models2 = model
1964
1968
  return
1965
1969
  }
1966
- if (this.data.defname === '通气转单' && model.button.button_name === '提交'){
1967
- requestData.model.f_sub_state = '完工'
1968
- }else {
1969
- requestData.model.f_sub_state = '未完工'
1970
- }
1970
+
1971
1971
  requestData.start_activity = this.$workflow_vue.start_activity
1972
1972
  requestData.loginUser = this.$login.f
1973
1973
  requestData.workflow_xmlfilename = this.$workflow_vue.workflow_xmlfilename
1974
+
1974
1975
  console.log('即将发送请求url=>' + url + ',参数=>' + JSON.stringify(requestData))
1975
1976
  let res = await http.load('POST', url, {data: requestData}, {resolveMsg: null, rejectMsg: '数据保存失败'})
1976
1977
  console.log("service处理完成返回数据:", JSON.stringify(res.data))